cursor position - translation to ιταλικό
Diclib.com
Λεξικό ChatGPT
Εισάγετε μια λέξη ή φράση σε οποιαδήποτε γλώσσα 👆
Γλώσσα:     

Μετάφραση και ανάλυση λέξεων από την τεχνητή νοημοσύνη ChatGPT

Σε αυτήν τη σελίδα μπορείτε να λάβετε μια λεπτομερή ανάλυση μιας λέξης ή μιας φράσης, η οποία δημιουργήθηκε χρησιμοποιώντας το ChatGPT, την καλύτερη τεχνολογία τεχνητής νοημοσύνης μέχρι σήμερα:

  • πώς χρησιμοποιείται η λέξη
  • συχνότητα χρήσης
  • χρησιμοποιείται πιο συχνά στον προφορικό ή γραπτό λόγο
  • επιλογές μετάφρασης λέξεων
  • παραδείγματα χρήσης (πολλές φράσεις με μετάφραση)
  • ετυμολογία

cursor position - translation to ιταλικό

DATABASE CURSOR
Database cursor; SQL Cursor; Cursor (database)

cursor position      
Posizione del cursore
foetal position         
THE POSITIONING OF THE BODY OF A PRENATAL FETUS AS IT DEVELOPS
Foetal position; Fetal Position; Fetal positions; Fetal pose; Foetal pose
posizione del feto
mouse pointer         
  • An example of a 3D cursor in a 3D modeling environment (center).
  • A ''wait'' cursor replaces the pointer with an hourglass.
  • The common cursor roles for a cursor set.
  • A blinking text cursor while typing ''Wikipedia''.
PART OF A COMPUTER UI THAT INDICATES THE POSITION (TEXTUAL OR GRAPHICAL) THAT OPERATIONS WILL AFFECT
Mouse pointer; SBOD; Mouse cursor; SBBOD; Spinning pizza of death; Pointer trails; Mouse pointer trails; Mouse trails; Beachballed; Spinning wait cursor (Mac OS X); Cursor hotspot; Cursor Hotspot; SWOD; Cursor editor; Text cursor; Cursor hovering text information; Pinwheel of death; Animated cursor; Cursor (GUI); Pointer (user interface); Pointer (computing WIMP); Spinning wait cursor; Wait cursor; Keyboard focus; Cursor (computers); The spinning wheel of death; Cursor (computing); Pointer (graphical user interfaces); ARC bug; Engelbart bug; Augmentation Research Center bug; Bug (computer mouse)
Cursore del mouse (segnale sullo schermo mosso tramite movimento del mouse)

Ορισμός

cursor
1. <hardware> A visually distinct mark on a display indicating where newly typed text will be inserted. The cursor moves as text is typed and, in most modern editors, can be moved around within a document by the user to change the insertion point. 2. <database> In SQL, a named control structure used by an application program to point to a row of data. The position of the row is within a table or view, and the cursor is used interactively so select rows from columns. (1996-12-27)

Βικιπαίδεια

Cursor (databases)

In computer science, a database cursor is a mechanism that enables traversal over the records in a database. Cursors facilitate subsequent processing in conjunction with the traversal, such as retrieval, addition and removal of database records. The database cursor characteristic of traversal makes cursors akin to the programming language concept of iterator.

Cursors are used by database programmers to process individual rows returned by database system queries. Cursors enable manipulation of whole result sets at once. In this scenario, a cursor enables the sequential processing of rows in a result set.

In SQL procedures, a cursor makes it possible to define a result set (a set of data rows) and perform complex logic on a row by row basis. By using the same mechanics, a SQL procedure can also define a result set and return it directly to the caller of the SQL procedure or to a client application.

A cursor can be viewed as a pointer to one row in a set of rows. The cursor can only reference one row at a time, but can move to other rows of the result set as needed.